home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / chrome / classic.jar / skin / classic / global / button.css < prev    next >
Cascading Style Sheet File  |  2006-02-28  |  6KB  |  186 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla Communicator client code, released
  15.  * March 31, 1998.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998-1999
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Joe Hewitt (hewitt@netscape.com)
  24.  *
  25.  * Alternatively, the contents of this file may be used under the terms of
  26.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  27.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.  * in which case the provisions of the GPL or the LGPL are applicable instead
  29.  * of those above. If you wish to allow use of your version of this file only
  30.  * under the terms of either the GPL or the LGPL, and not to allow others to
  31.  * use your version of this file under the terms of the MPL, indicate your
  32.  * decision by deleting the provisions above and replace them with the notice
  33.  * and other provisions required by the GPL or the LGPL. If you do not delete
  34.  * the provisions above, a recipient may use your version of this file under
  35.  * the terms of any one of the MPL, the GPL or the LGPL.
  36.  *
  37.  * ***** END LICENSE BLOCK ***** */
  38.  
  39. /* ===== button.css =====================================================
  40.   == Styles used by the XUL button element.
  41.   ======================================================================= */
  42.  
  43. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  44.  
  45. /* :::::::::: button :::::::::: */
  46.  
  47. button {
  48.   -moz-appearance: button;
  49.   margin: 1px 5px 2px 5px;
  50.   min-width: 6.3em;
  51.   border: 3px solid;
  52.   -moz-border-top-colors: transparent ThreeDHighlight ThreeDLightShadow;
  53.   -moz-border-right-colors: transparent ThreeDDarkShadow ThreeDShadow;
  54.   -moz-border-bottom-colors: transparent ThreeDDarkShadow ThreeDShadow;
  55.   -moz-border-left-colors: transparent ThreeDHighlight ThreeDLightShadow;
  56.   background-color: ThreeDFace;
  57.   color: ButtonText;
  58. }
  59.  
  60. .button-box {
  61.   border: 1px solid transparent;
  62.   padding-top: 1px;
  63.   padding-bottom: 2px;
  64.   -moz-padding-start: 3px;
  65.   -moz-padding-end: 4px;
  66. }
  67.  
  68. .button-text {
  69.   margin: 0 !important;
  70.   text-align: center;
  71. }
  72.  
  73. /* .......... focused state .......... */
  74.  
  75. button:focus {
  76.   -moz-border-top-colors: ThreeDDarkShadow ThreeDHighlight transparent;
  77.   -moz-border-right-colors: ThreeDDarkShadow ThreeDDarkShadow ThreeDShadow;
  78.   -moz-border-bottom-colors: ThreeDDarkShadow ThreeDDarkShadow ThreeDShadow;
  79.   -moz-border-left-colors: ThreeDDarkShadow ThreeDHighlight transparent;
  80. }
  81.  
  82. button:focus > .button-box {
  83.   border: 1px dotted ThreeDDarkShadow;
  84. }
  85.  
  86. /* .......... default state .......... */
  87.  
  88. button[default="true"] {
  89.   -moz-border-top-colors: ThreeDDarkShadow ThreeDHighlight ThreeDLightShadow;
  90.   -moz-border-right-colors: ThreeDDarkShadow ThreeDDarkShadow ThreeDShadow;
  91.   -moz-border-bottom-colors: ThreeDDarkShadow ThreeDDarkShadow ThreeDShadow;
  92.   -moz-border-left-colors: ThreeDDarkShadow ThreeDHighlight ThreeDLightShadow;
  93. }
  94.  
  95. /* .......... active/open/checked state .......... */
  96.  
  97. button:hover:active,
  98. button[open="true"],
  99. button[checked="true"] {
  100.   -moz-border-top-colors: ThreeDDarkShadow ThreeDShadow transparent;
  101.   -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow transparent;
  102.   -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow transparent;
  103.   -moz-border-left-colors: ThreeDDarkShadow ThreeDShadow transparent;
  104. }
  105.  
  106. button:hover:active > .button-box,
  107. button[open="true"] > .button-box,
  108. button[checked="true"] > .button-box {
  109.   padding-top: 2px;
  110.   padding-bottom: 1px;
  111.   -moz-padding-start: 4px;
  112.   -moz-padding-end: 3px;
  113. }
  114.  
  115. /* .......... disabled state .......... */
  116.  
  117. button[disabled="true"] {
  118.   -moz-border-top-colors: transparent ThreeDHighlight ThreeDLightShadow !important;
  119.   -moz-border-right-colors: transparent ThreeDDarkShadow ThreeDShadow !important;
  120.   -moz-border-bottom-colors: transparent ThreeDDarkShadow ThreeDShadow !important;
  121.   -moz-border-left-colors: transparent ThreeDHighlight ThreeDLightShadow !important;
  122.   color: GrayText;
  123. }
  124.  
  125. button[disabled="true"] > .button-box {
  126.   padding-top: 1px !important;
  127.   padding-bottom: 2px !important;
  128.   -moz-padding-start: 3px !important;
  129.   -moz-padding-end: 4px !important;
  130. }
  131.  
  132. /* ::::: menu/menu-button buttons ::::: */
  133.  
  134. button[type="menu-button"] {
  135.   -moz-box-align: center;
  136.   -moz-box-pack: center;
  137.   margin: 0;
  138.   border: none;
  139. }
  140.  
  141. .button-menu-dropmarker,
  142. .button-menubutton-dropmarker {
  143.   margin: 1px;
  144.   background-image: url("chrome://global/skin/arrow/arrow-dn.gif");
  145.   background-repeat: no-repeat;
  146.   background-position: center center;
  147.   min-width:11px;
  148.   min-height:11px;
  149. }
  150.   
  151. .button-menu-dropmarker[disabled="true"],
  152. .button-menubutton-dropmarker[disabled="true"] {
  153.   background-image: url("chrome://global/skin/arrow/arrow-dn-dis.gif");
  154. }
  155.  
  156. .button-menubutton-dropmarker[open="true"] {
  157.   margin-top: 2px;
  158.   margin-bottom: 0px;
  159.   -moz-margin-start: 2px;
  160.   -moz-margin-end: 0px;
  161. }
  162.  
  163. /* ::::: plain buttons ::::: */
  164.  
  165. button.plain {
  166.   border: 0px !important;
  167.   margin: 0px !important;
  168.   padding: 0px !important;
  169. }
  170.  
  171. button[type="disclosure"] {
  172.   border: 0px !important;
  173.   margin: 0px !important;
  174.   padding: 0px !important;
  175.   -moz-appearance: none;
  176.   list-style-image: url("chrome://global/skin/tree/twisty-clsd.png");
  177.   min-width: 0px !important;
  178.   background-color: transparent;
  179. }
  180.  
  181. button[type="disclosure"][open="true"] {
  182.   list-style-image: url("chrome://global/skin/tree/twisty-open.png"); 
  183. }
  184.  
  185.  
  186.